home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Views / Panes / View.h < prev    next >
Text File  |  2000-06-23  |  172b  |  16 lines

  1. // View.h
  2.  
  3. #ifndef View_h
  4. #define View_h
  5.  
  6. class CellVisitor;
  7. class Canvas;
  8.  
  9. class View
  10.   {
  11.     public:
  12.         virtual void Deliver( CellVisitor&, const Canvas& ) = 0;
  13.   };
  14.  
  15. #endif
  16.